home *** CD-ROM | disk | FTP | other *** search
Makefile | 1994-08-02 | 454 b | 21 lines |
- #!smake
-
- include $(ROOT)/usr/include/make/commondefs
-
- RAPDEFS = -D_K32U32 -D_KERNEL -DSTATIC=static -DJUMP_WAR -DPROBE_WAR \
- -DBADVA_WAR -DIP22 -DR4000
- RAPOPTS = -Wx,-G8 -non_shared -coff -Wc,-pic0 -O0 -g2
- CFILES = rap.c play.c record.c rapMap.c
- TARGEXS = play record rapMap
- TARGETS = $(TARGEXS) rap.o
-
- default all: $(TARGETS)
-
- include $(COMMONRULES)
-
- rap.o: rap.c
- ${CCF} -c rap.c $(RAPDEFS) $(RAPOPTS)
-
- $(TARGEXS): $$@.c
- ${CCF} -o $@ $@.c $(LDFLAGS)
-